/* * TDM, open source software quality management tool. * Copyright (C) 2011-2012 Sandeep,Sreeni,Deena * mailto: { msandeepkumar,srini211 } AT hotmail DOT com * * TDM is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * TDM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with TDM; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 */ package calculation; public class Configuration { //Current Values are Predefined and can be set at any time public double Duplication_Cost = 3 ; public double DBAccess_Cost = 0.5 ; public double Invalidation_Cost = 4; public double Comment_Cost = 0.3; public double Violation_Cost = 5 ; public double Cost_Per_Day = 2500; }